LoadNetworkResourcePageResult

data class LoadNetworkResourcePageResult(success: Boolean, netError: Double?, netErrorName: String?, httpStatusCode: Double?, stream: StreamHandle?, headers: Headers?)

An object providing the result of a network resource load.

Constructors

LoadNetworkResourcePageResult
Link copied to clipboard
fun LoadNetworkResourcePageResult(success: Boolean, netError: Double? = null, netErrorName: String? = null, httpStatusCode: Double? = null, stream: StreamHandle? = null, headers: Headers? = null)

Properties

headers
Link copied to clipboard
val headers: Headers? = null
Response headers.
httpStatusCode
Link copied to clipboard
val httpStatusCode: Double? = null
netError
Link copied to clipboard
val netError: Double? = null
Optional values used for error reporting.
netErrorName
Link copied to clipboard
val netErrorName: String? = null
stream
Link copied to clipboard
val stream: StreamHandle? = null
If successful, one of the following two fields holds the result.
success
Link copied to clipboard
val success: Boolean

Sources

jvm source
Link copied to clipboard